home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / MPW Interfaces & Libraries / PInterfaces / OSIntf.p < prev    next >
Encoding:
Text File  |  1992-01-29  |  2.0 KB  |  94 lines  |  [TEXT/MPS ]

  1. {
  2.     File: OSIntf.p
  3.  
  4.     As of MPW 3.0, interface files were reorganized to more closely
  5.     match "Inside Macintosh" reference books and be more consistant
  6.     from language to language.
  7.     
  8.     Interfaces for the Operating System calls are now found in the
  9.     files included below. This file is provided for compatibility
  10.     with old sources.
  11.  
  12.     Pascal Interface to the Macintosh Libraries
  13.     Copyright Apple Computer, Inc. 1988
  14.     All Rights Reserved
  15. }
  16.  
  17. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.     UNIT OSIntf;
  23.     INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED UsingOSIntf}
  27. {$SETC UsingOSIntf := 1}
  28.  
  29. {$I+}
  30. {$SETC OSIntfIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32. {$IFC UNDEFINED UsingEvents}
  33. {$I $$Shell(PInterfaces)Events.p}
  34. {$ENDC}
  35. {$IFC UNDEFINED UsingOSUtils}
  36. {$I $$Shell(PInterfaces)OSUtils.p}
  37. {$ENDC}
  38. {$IFC UNDEFINED UsingFiles}
  39. {$I $$Shell(PInterfaces)Files.p}
  40. {$ENDC}
  41. {$IFC UNDEFINED UsingDevices}
  42. {$I $$Shell(PInterfaces)Devices.p}
  43. {$ENDC}
  44. {$IFC UNDEFINED UsingDeskBus}
  45. {$I $$Shell(PInterfaces)DeskBus.p}
  46. {$ENDC}
  47. {$IFC UNDEFINED UsingDiskInit}
  48. {$I $$Shell(PInterfaces)DiskInit.p}
  49. {$ENDC}
  50. {$IFC UNDEFINED UsingDisks}
  51. {$I $$Shell(PInterfaces)Disks.p}
  52. {$ENDC}
  53. {$IFC UNDEFINED UsingErrors}
  54. {$I $$Shell(PInterfaces)Errors.p}
  55. {$ENDC}
  56. {$IFC UNDEFINED UsingMemory}
  57. {$I $$Shell(PInterfaces)Memory.p}
  58. {$ENDC}
  59. {$IFC UNDEFINED UsingOSEvents}
  60. {$I $$Shell(PInterfaces)OSEvents.p}
  61. {$ENDC}
  62. {$IFC UNDEFINED UsingRetrace}
  63. {$I $$Shell(PInterfaces)Retrace.p}
  64. {$ENDC}
  65. {$IFC UNDEFINED UsingSegLoad}
  66. {$I $$Shell(PInterfaces)SegLoad.p}
  67. {$ENDC}
  68. {$IFC UNDEFINED UsingSerial}
  69. {$I $$Shell(PInterfaces)Serial.p}
  70. {$ENDC}
  71. {$IFC UNDEFINED UsingShutDown}
  72. {$I $$Shell(PInterfaces)ShutDown.p}
  73. {$ENDC}
  74. {$IFC UNDEFINED UsingSlots}
  75. {$I $$Shell(PInterfaces)Slots.p}
  76. {$ENDC}
  77. {$IFC UNDEFINED UsingSound}
  78. {$I $$Shell(PInterfaces)Sound.p}
  79. {$ENDC}
  80. {$IFC UNDEFINED UsingStart}
  81. {$I $$Shell(PInterfaces)Start.p}
  82. {$ENDC}
  83. {$IFC UNDEFINED UsingTimer}
  84. {$I $$Shell(PInterfaces)Timer.p}
  85. {$ENDC}
  86. {$SETC UsingIncludes := OSIntfIncludes}
  87.  
  88. {$ENDC}    { UsingOSIntf }
  89.  
  90. {$IFC NOT UsingIncludes}
  91.     END.
  92. {$ENDC}
  93.  
  94.